Loggest thy stuff
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
411 B

<script lang="ts" context="module">
import type { Load } from "@sveltejs/kit/types/internal";
export const load: Load = async({ stuff }) => {
return {
props: {
scope: stuff.scope,
}
};
}
</script>
<script lang="ts">
import type Scope from "$lib/models/scope";
import { page } from "$app/stores";
export let scope: Scope;
</script>
<h1>{$page.stuff.scope.name}</h1>
<style>
</style>